export const ssr = false; import { activeChannel } from '$lib/store'; /** @type {import('./$types').PageLoad} */ export function load({ params }) { let { channel } = params; activeChannel.update((value) => { value.set(channel) return value; }); }